home *** CD-ROM | disk | FTP | other *** search
- class CHitTestCollision extends CCollisionVolume
- {
- var m_body;
- function CHitTestCollision(body)
- {
- super(body);
- }
- function get _topLeftCorner()
- {
- return this.m_body._location;
- }
- function get _bottomRightCorner()
- {
- return this.m_body._location;
- }
- function MayCollideOnSeparation()
- {
- return true;
- }
- }
-